home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-pattern-arrow.scm < prev    next >
Text File  |  2009-12-15  |  5KB  |  162 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Beveled pattern arrow for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. (define (script-fu-beveled-pattern-arrow size orientation pattern)
  24.  
  25.   (define (make-point x y)
  26.     (cons x y)
  27.   )
  28.  
  29.   (define (point-x p)
  30.     (car p)
  31.   )
  32.  
  33.   (define (point-y p)
  34.     (cdr p)
  35.   )
  36.  
  37.   (define (point-list->double-array point-list)
  38.     (let* (
  39.           (how-many (length point-list))
  40.           (a (cons-array (* 2 how-many) 'double))
  41.           (count 0)
  42.           )
  43.  
  44.       (for-each (lambda (p)
  45.                   (aset a (* count 2) (point-x p))
  46.                   (aset a (+ 1 (* count 2)) (point-y p))
  47.                   (set! count (+ count 1)))
  48.                 point-list
  49.       )
  50.       a
  51.     )
  52.   )
  53.  
  54.   (define (rotate-points points size orientation)
  55.     (map (lambda (p)
  56.            (let ((px (point-x p))
  57.                  (py (point-y p)))
  58.              (cond ((= orientation 0) (make-point px py))           ; right
  59.                    ((= orientation 1) (make-point (- size px) py))  ; left
  60.                    ((= orientation 2) (make-point py (- size px)))  ; up
  61.                    ((= orientation 3) (make-point py px))           ; down
  62.              )
  63.            )
  64.          )
  65.          points
  66.     )
  67.   )
  68.  
  69.   (define (make-arrow size offset)
  70.     (list (make-point offset offset)
  71.           (make-point (- size offset) (/ size 2))
  72.           (make-point offset (- size offset)))
  73.   )
  74.  
  75.   ; the main function
  76.  
  77.   (let* (
  78.         (img (car (gimp-image-new size size RGB)))
  79.         (background (car (gimp-layer-new img size size RGB-IMAGE "Arrow" 100 NORMAL-MODE)))
  80.         (bumpmap (car (gimp-layer-new img size size RGB-IMAGE "Bumpmap" 100 NORMAL-MODE)))
  81.         (big-arrow (point-list->double-array (rotate-points (make-arrow size 6) size orientation)))
  82.         (med-arrow (point-list->double-array (rotate-points (make-arrow size 7) size orientation)))
  83.         (small-arrow (point-list->double-array (rotate-points (make-arrow size 8) size orientation)))
  84.         )
  85.  
  86.     (gimp-context-push)
  87.  
  88.     (gimp-image-undo-disable img)
  89.     (gimp-image-add-layer img background -1)
  90.     (gimp-image-add-layer img bumpmap -1)
  91.  
  92.     ; Create pattern layer
  93.  
  94.     (gimp-context-set-background '(0 0 0))
  95.     (gimp-edit-fill background BACKGROUND-FILL)
  96.     (gimp-context-set-pattern pattern)
  97.     (gimp-edit-bucket-fill background PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
  98.  
  99.     ; Create bumpmap layer
  100.  
  101.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  102.  
  103.     (gimp-context-set-background '(127 127 127))
  104.     (gimp-rect-select img 1 1 (- size 2) (- size 2) CHANNEL-OP-REPLACE FALSE 0)
  105.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  106.  
  107.     (gimp-context-set-background '(255 255 255))
  108.     (gimp-rect-select img 2 2 (- size 4) (- size 4) CHANNEL-OP-REPLACE FALSE 0)
  109.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  110.  
  111.     (gimp-context-set-background '(127 127 127))
  112.     (gimp-free-select img 6 big-arrow CHANNEL-OP-REPLACE TRUE FALSE 0)
  113.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  114.  
  115.     (gimp-context-set-background '(0 0 0))
  116.     (gimp-free-select img 6 med-arrow CHANNEL-OP-REPLACE TRUE FALSE 0)
  117.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  118.  
  119.     (gimp-selection-none img)
  120.  
  121.     ; Bumpmap
  122.  
  123.     (plug-in-bump-map RUN-NONINTERACTIVE img background bumpmap 135 45 2 0 0 0 0 TRUE FALSE 0)
  124.  
  125.     ; Darken arrow
  126.  
  127.     (gimp-context-set-background '(255 255 255))
  128.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  129.  
  130.     (gimp-context-set-background '(192 192 192))
  131.     (gimp-free-select img 6 small-arrow CHANNEL-OP-REPLACE TRUE FALSE 0)
  132.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  133.  
  134.     (gimp-selection-none img)
  135.  
  136.     (gimp-layer-set-mode bumpmap MULTIPLY-MODE)
  137.  
  138.     (gimp-image-flatten img)
  139.  
  140.     (gimp-image-undo-enable img)
  141.     (gimp-display-new img)
  142.  
  143.     (gimp-context-pop)
  144.   )
  145. )
  146.  
  147.  
  148. (script-fu-register "script-fu-beveled-pattern-arrow"
  149.   _"_Arrow..."
  150.   _"Create a beveled pattern arrow for webpages"
  151.   "Federico Mena Quintero"
  152.   "Federico Mena Quintero"
  153.   "July 1997"
  154.   ""
  155.   SF-ADJUSTMENT _"Size"        '(32 5 150 1 10 0 1)
  156.   SF-OPTION     _"Orientation" '(_"Right" _"Left" _"Up" _"Down")
  157.   SF-PATTERN    _"Pattern"     "Wood"
  158. )
  159.  
  160. (script-fu-menu-register "script-fu-beveled-pattern-arrow"
  161.                          "<Image>/File/Create/Web Page Themes/Beveled Pattern")
  162.